All Questions
33 questions
3votes
1answer
436views
Pokemon Soul Link tracker
I've just finished writing a program to help track Pokemon across Soul Links. The goal of the program is to take in the names of the two Pokemon alongside the route that they were caught on. The ...
7votes
1answer
1kviews
Chess application with GUI and AI in Java
I've included the files that I felt were relevant (i.e I haven't included the individual pieces in the inheritance hierarchy). I'm particularly curious as to whether the system as a whole is ...
7votes
1answer
2kviews
This is a sorting algorithm visualization program
Configs.java ...
3votes
0answers
65views
Controller class for an input dialog
I am learning OOP, concretely Java, by developing a real life business application for aimed for repair shops. I have followed MVC pattern design for GUI elements of my application. I was wondering do ...
3votes
0answers
145views
Java game: select numbered tiles to form a goal sum
This is a homework project (Soft. Eng.) which I have completed. My teacher gave me a 91, but I am unhappy with this grade because my code is quite messy. (Please excuse incomplete Javadoc, the code is ...
-1votes
3answers
407views
A Java Calculator that could perform basic Mathematical Operations [closed]
I've been working for few days to develop a basic Java Swing Calculator that could Add, Subtract, Multiply or Divide two numbers and also has other options like inverse(1/x) and square root I would ...
5votes
1answer
3kviews
Simple Java OOP calculator with GUI
I'm learning Java and I've tried to write my own calculator with GUi based on this post. Here is the repo: https://github.com/MurDaD/java-calculator Could someone check my code and tell me how to ...
5votes
2answers
236views
A small but expandable Exam system
I'm trying to practice OO design as well as OOP in Java so I've created an Exam system that tries to be Object Oriented and expandable. This is what I haven't learned from Java so far: Java 8, ...
4votes
2answers
2kviews
Swing application to compute the area and perimeter of shapes
I am a beginner programmer. How would you refactor this code to abide by good coding practices? As it stands the program has 4 classes and its aim is to compute the area and perimeter of a specific ...
5votes
2answers
2kviews
Pong game in Swing
I have made my version of the game pong in java. This is my first Java coding project. I was curious if my code adheres to good Java coding practices. Constructive criticism is appreciated. The main ...
4votes
2answers
2kviews
Directory JTree Performance
The purpose of this short program is to: Detect all accessible local drives and USB drives List all the accessible directories for each drive which do not require administrator privileges or are ...
5votes
1answer
751views
Conways Game of Life in Swing, using OOP
I'm relatively new to coding and was wondering if anyone could review my code? I'm trying to get my head around the concepts of Object-oriented programming in particular. This is an implementation of ...
0votes
1answer
309views
3votes
1answer
3kviews
Simple Calculator in Java and Swing
I'm new at this and I'm almost done with learning basic Java. I made this just to see if I could do it. I just want to know if there's anything I can do to make it better. ...
1vote
1answer
70views
File-copying Manager
I have the following java class which has many private variables and methods: ...